From: Eli Zaretskii Date: Sat, 14 Aug 2021 17:38:05 +0000 (+0300) Subject: * src/w32.c (_sys_read_ahead): Pacify a silly compiler warning. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~18^2~1752 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9c5dc3cbe03f0e814d8a31cf2e2033a489bc1c3b;p=emacs.git * src/w32.c (_sys_read_ahead): Pacify a silly compiler warning. --- diff --git a/src/w32.c b/src/w32.c index 180c73aa0f0..0eb69d4b1d1 100644 --- a/src/w32.c +++ b/src/w32.c @@ -8758,7 +8758,7 @@ int _sys_read_ahead (int fd) { child_process * cp; - int rc; + int rc = 0; if (fd < 0 || fd >= MAXDESC) return STATUS_READ_ERROR;